home *** CD-ROM | disk | FTP | other *** search
/ AEMail 2.40 / AEMail v2.40.iso / arexx / aemail_tofront.readme < prev    next >
Text File  |  1999-02-28  |  2KB  |  78 lines

  1. AEMAIL_TOFRONT.readme
  2.  
  3. THIS SCRIPT WILL RUN ON BOTH REGISTERED AND UNREGISTERED COPIES OF AEMAIL
  4.  
  5. This script is a small, simple script to be used by browsers that open on
  6. the Workbench to bring the AEMail screen to the front and to close the
  7. browser.
  8.  
  9. This script will work with both IBROWSE and AWEB.  It determines
  10. which AREXX port your browser is using by the statement:
  11.  
  12.     wwwport = ADDRESS()
  13.  
  14. AWEB returns the correct port address, but, IBROWSE, unfortunately returns
  15. "REXX".  The port name needs to be changed to "IBROWSE"
  16.  
  17.                              HOW TO IMPLEMENT
  18.                              ----------------
  19.  
  20. If you are using IBROWSE:
  21.  
  22.     Activate the "Preferences/General" menu item.
  23.  
  24.     Call up the "Rexx:" tab.
  25.  
  26.     Click on "Add"
  27.  
  28.     Enter a short name that you want your ARexx script to be called by in
  29.         the "Name" field.
  30.  
  31.     Enter the full path name of the AEMAIL_TOFRONT.aem script in the
  32.         "Macro" field.  You can use the file folder glyph to call up a file
  33.         requester to find it.
  34.  
  35.     Then click on "OK".  If a menu item called "Rexx" is not already there
  36.         it will be created and the short name added to it.
  37.  
  38. If you are using AWEB:
  39.  
  40.     Activate the "Settings/Change Settings" menu.
  41.  
  42.     Select "ARexx Macro Menu"
  43.  
  44.     Click on "Add"
  45.  
  46.     Enter a short name that you want your ARexx script to be called by in
  47.         the "Title" field.  Be sure an hit RETURN.  The title will appear
  48.         in the listview.
  49.  
  50.     If you want a shortcut key, select one.
  51.  
  52.     Enter the full path name of the AEMAIL_TOFRONT.aem script in the
  53.         "Macro" field.  You can use the file folder glyph to call up a file
  54.         requester to find it.
  55.  
  56.     Then click on "Save".  The short title and shortcut key will appear in
  57.         the ARexx menu.
  58.  
  59.  
  60.                                 HOW TO USE
  61.                                 ----------
  62.  
  63. After viewing your HTML document, bring down the "Rexx" or "Arexx" menu and
  64. click on the name or title that you gave the ARexx script.  With AWeb, you
  65. can also use the shortcut key.
  66.  
  67. This script is save to use if AEMail is not loaded.  In this case the
  68. browser will quit without asking you to confirm.
  69.  
  70. If you want your browser to remain in the background, but still bring the
  71. AEMail screen to the front, remove the statements:
  72.  
  73.  
  74.     ADDRESS VALUE wwwport
  75.  
  76.     "QUIT FORCE"
  77.  
  78.